home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 176-200 / disk_179 / dmake / mf2.test < prev    next >
Text File  |  1992-05-06  |  432b  |  20 lines

  1.  
  2. SRCS =    *.c
  3. OBJS =    ram:*.o
  4.  
  5. # note, in the line below you must specify $(SRCS) on the right
  6. # hand side of you want %(SRCS) to expand properly.  Apart from
  7. # that the specification of $(SRCS) is redundant
  8.  
  9. all: $(OBJS) $(SRCS)
  10.     Echo "ln %(OBJS) -o c:blah"
  11.     Echo "sources are: %(SRCS)"
  12.  
  13. $(OBJS) : $(SRCS)
  14.     Echo "cc %(right) -o %(left)"
  15.  
  16. arc: $(SRCS) c:blah
  17.     Echo "Delete ram:x.arc"
  18.     Echo "arc a ram:x %(SRCS) c:blah"
  19.  
  20.